home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Commodities / BlocNotes / ArchiveNote.rexx next >
OS/2 REXX Batch file  |  1996-09-26  |  259b  |  16 lines

  1. /* Hides notes and makes it not autoopen*/
  2.  
  3. address 'blocnotes.rexx'
  4. options results
  5.  
  6. /*Get the id of the note*/
  7.  
  8. parse arg id .
  9.  
  10. ISANOTE id
  11. if result then do     /* Check if the id is valid*/
  12.    HIDE id
  13.    AUTOOPEN id OFF
  14.    FIXEDSCREEN id OFF
  15.    SAVE id
  16. end